home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / wlib11_4.zip / HEADERS.EXE / PROTO.H < prev    next >
Text File  |  1991-02-03  |  378b  |  18 lines

  1. /*** PROTO.H ***/
  2.  
  3. /* Written By P.A. McKenzie 
  4.  * The C Window Library
  5.  * Copyright (C) 1990   All Rights Reserved
  6. */
  7. #ifndef PROTO_DEF
  8. #define PROTO_DEF
  9. #define __PROTO__         /* Delete this line for compilers that do not support
  10.                            * prototyping */
  11.  
  12. #if defined (__PROTO__)
  13. # define P(s)    s
  14. #else
  15. # define P(s) ()
  16. #endif
  17. #endif
  18.